home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mstream_handler.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  110 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10391);
  10.  script_version ("$Revision: 1.10 $");
  11.  script_cve_id("CAN-2000-0138");
  12.  
  13.  name["english"] = "mstream handler Detect";
  14.  name["francais"] = "Detection d'un handler mstream";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote host appears to be running
  20. a mstream handler, which is a trojan that can be 
  21. used to control your system or make it 
  22. attack another network (this is 
  23. actually called a distributed denial
  24. of service attack tool)
  25.  
  26. It is very likely that this host
  27. has been compromised
  28.  
  29. Solution : Restore your system from backups,
  30.        contact CERT and your local
  31.        authorities
  32.  
  33. Risk factor : Critical";
  34.  
  35.  
  36.  
  37.  desc["francais"] = "
  38. Le systeme distant semble faire tourner
  39. un handler mstream, qui peut etre utilisΘ pour prendre 
  40. le controle de celui-ci ou pour attaquer un 
  41. autre rΘseau (outil de dΘni de service 
  42. distribuΘ)
  43.  
  44. Il est trΦs probable que ce systeme a ΘtΘ
  45. compromis
  46.  
  47. Solution : reinstallez votre systΦme α partir
  48.        des sauvegardes, et contactez le CERT
  49.        et les autoritΘs locales
  50.        
  51. Facteur de risque : Critique";
  52.  
  53.  
  54.  script_description(english:desc["english"], francais:desc["francais"]);
  55.  
  56.  summary["english"] = "Detects the presence of a mstream agent";
  57.  summary["francais"] = "Detecte la prΘsence d'un agent mstream";
  58.  
  59.  script_summary(english:summary["english"], francais:summary["francais"]);
  60.  
  61.  script_category(ACT_GATHER_INFO);
  62.  
  63.  
  64.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  65.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  66.  family["english"] = "Backdoors";
  67.  family["francais"] = "Backdoors";
  68.  script_family(english:family["english"], francais:family["francais"]);
  69.  
  70.  script_require_ports(6723, 15104, 12754); 
  71.  script_dependencies("find_service.nes");
  72.  exit(0);
  73. }
  74.  
  75. include("misc_func.inc");
  76.  
  77. function check(port, pass)
  78. {
  79.  if(get_port_state(port))
  80. {
  81.  soc = open_sock_tcp(port);
  82.  if(soc)
  83.  {
  84.   send(socket:soc, data:string(pass, "\r\n"));
  85.   r = recv(socket:soc, length:2, timeout:2);
  86.   close(soc);
  87.   if(r == "> ")
  88.     {
  89.       security_hole(port);
  90.       return(1);
  91.     }
  92.   }
  93.  }
  94.   return(0);
  95. }
  96.  
  97. port = get_kb_item("Services/unknown");
  98. if(port)
  99. {
  100.  if (known_service(port: port)) exit(0);
  101.  if(check(port:port, pass:"sex"))exit(0);
  102.  if(check(port:port, pass:"N7%diApf!"))exit(0);
  103. }
  104. else
  105. {
  106.  if(check(port:6723, pass:"sex"))exit(0);
  107.  if(check(port:15104, pass:"N7%diApf!"))exit(0);
  108.  if(check(port:12754, pass:"N7%diApf!"))exit(0);
  109. }
  110.